Get Fixed Deposit Transaction
GET /api/v{version}/FixedDeposit/accounts/{accountId}/transaction/{transactionId}
Description
This endpoint retrieves the details of a specific transaction for a fixed deposit account. It requires the account ID and transaction ID to be provided as path parameters.
Parameters
- accountId (
integer, path, required): The ID of the fixed deposit account. - transactionId (
integer, path, required): The ID of the transaction. - version (
string, path, required): The version of the API. - Accept-Language (
string, header, optional): Change the default response message language from English (en). Available languages arefranden.
Responses
- 200 OK
- Media type: Controls Accept header.
- Example Value:
{
"transactionId": 12345,
"accountId": 67890,
"amount": 1000.00,
"currency": "USD",
"transactionType": "deposit",
"transactionDate": "2023-12-12T02:23:28.501Z",
"status": "completed"
}
LANGUAGE
CURL REQUEST
curl --request GET \
--url /api/v{version}/FixedDeposit/accounts/{accountId}/transaction/{transactionId} \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!